home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Education / PC-SiG's World of Education.iso / wor / disk1478.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1989-05-09  |  733b  |  37 lines

  1. echo off
  2. cls
  3. echo You are about to install QIP to your hard disk.
  4. echo .
  5. echo This batch file will copy all of the needed files to your hard disk.
  6. echo .
  7. echo IMPORTANT note, you must specify the drive letter after typing the
  8. echo command INSTALL.
  9. echo .
  10. echo Example, if your hard disk is drive C: you would type INSTALL C:
  11. if exist %1 then goto :start
  12. if not exist %1 then goto :end
  13. :start
  14. pause
  15. md %1\qip
  16. copy a:*.* %1\qip
  17. cls
  18. echo Insert disk #2 into drive A:
  19. pause
  20. copy a:*.* %1\qip
  21. cls
  22. echo Insert disk #3 into drive A:
  23. pause
  24. copy a:*.* %1\qip
  25. cls
  26. echo Insert disk #4 into drive A:
  27. pause
  28. copy a:*.* %1\qip
  29. cls
  30. echo Installation Completed
  31. echo Starting the program
  32. %1
  33. cd\qip
  34. go
  35. :end
  36. echo on
  37.